home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Include / include_h / clib / debug_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-01  |  1.3 KB  |  51 lines

  1. #ifndef  CLIB_DEBUG_PROTOS_H
  2. #define  CLIB_DEBUG_PROTOS_H
  3.  
  4. /*
  5. **    $VER: debug_protos.h 40.1 (17.5.1996)
  6. **    Includes Release 44.1
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    Copyright © 1999 Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif /* __cplusplus */
  17.  
  18. #ifndef  EXEC_TYPES_H
  19. #include <exec/types.h>
  20. #endif
  21. LONG KCmpStr( CONST_STRPTR a, CONST_STRPTR b );
  22. LONG cmpstrexec( CONST_STRPTR a, CONST_STRPTR b );
  23. LONG KGetChar( VOID );
  24. LONG kgetc( VOID );
  25. LONG kgetchar( VOID );
  26. LONG kgetch( VOID );
  27. LONG KGetCh( VOID );
  28. LONG KGetNum( VOID );
  29. LONG kgetnum( VOID );
  30. LONG KMayGetChar( VOID );
  31. LONG KMayGetCh( VOID );
  32. VOID KPutFmt( CONST_STRPTR formatString, CONST APTR values );
  33. VOID KVPrintF( CONST_STRPTR formatString, CONST APTR values );
  34. VOID KPrintF( CONST_STRPTR formatString, ... );
  35. VOID kprintf( CONST_STRPTR formatString, ... );
  36. VOID KPutChar( LONG ch );
  37. VOID kputc( LONG ch );
  38. VOID kputchar( LONG ch );
  39. VOID kputch( LONG ch );
  40. VOID KPutCh( LONG ch );
  41. VOID KPutStr( CONST_STRPTR string );
  42. VOID kputs( CONST_STRPTR string );
  43. VOID KPutS( CONST_STRPTR string );
  44. VOID KDoFmt( CONST_STRPTR formatString, CONST APTR dataStream, CONST APTR putChProc, APTR putChData );
  45.  
  46. #ifdef __cplusplus
  47. }
  48. #endif /* __cplusplus */
  49.  
  50. #endif   /* CLIB_DEBUG_PROTOS_H */
  51.